home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / 1XSKPFF (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  797 b   |  15 lines

  1. package com.ibm.uvm.abt.edit;
  2.  
  3. import java.beans.PropertyEditorSupport;
  4. import sun.beans.editors.BoolEditor;
  5.  
  6. public class JavaLangBooleanEditor extends BoolEditor {
  7.    public String getAsText() {
  8.       return ((PropertyEditorSupport)this).getValue() == null ? "False" : super.getAsText();
  9.    }
  10.  
  11.    public String getJavaInitializationString() {
  12.       return (Boolean)((PropertyEditorSupport)this).getValue() ? "new java.lang.Boolean(true)" : "new java.lang.Boolean(false)";
  13.    }
  14. }
  15.